A non-equi-angular Rose chart
This goes in the documents header:
<script src="RGraph.common.core.js"></script>
<script src="RGraph.rose.js"></script>
Put this where you want the chart to show up:
<canvas id="cvs" width="400" height="400">
[No canvas support]
</canvas>
This is the code that generates the chart:
<script>
window.onload = function ()
{
var rose = new RGraph.Rose({
id: 'cvs',
data: [[4,5],[9,1],[2,6],[4,2],[4,3]],
options: {
margin: 5,
variant: 'non-equi-angular',
textAccessible: true
}
}).draw();
};
</script>